https://bugzilla.gnome.org/show_bug.cgi?id=756579
gint abs_x, abs_y; /* Absolute offset in impl */
gint width, height;
+ gint shadow_top;
+ gint shadow_left;
+ gint shadow_right;
+ gint shadow_bottom;
guint num_offscreen_children;
g_return_if_fail (!GDK_WINDOW_DESTROYED (window));
g_return_if_fail (left >= 0 && right >= 0 && top >= 0 && bottom >= 0);
+ window->shadow_top = top;
+ window->shadow_left = left;
+ window->shadow_right = right;
+ window->shadow_bottom = bottom;
+
impl_class = GDK_WINDOW_IMPL_GET_CLASS (window->impl);
if (impl_class->set_shadow_width)